Fix: rd_kafka_consume_batch incorrectly advances offset by 2 on EOF messages #5213
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Summary
This PR fixes a bug in
rd_kafka_consume_batch()where EOF messages incorrectly advance the consumer position by 2 instead of 1 whenenable.partition.eof=true. The bug causesrd_kafka_position()to return last_offset + 2 instead of the correct last_offset + 1 after consuming an EOF message in batch mode.Motivation
Root Cause
In
src/rdkafka_queue.c, therd_kafka_q_serve_rkmessages()function updates the consumer position for all messages in a batch, including EOF messages. EOF messages have error codeRD_KAFKA_RESP_ERR__PARTITION_EOFbut are not control messages, so they were incorrectly incrementing the offset.Changes
File:
src/rdkafka_queue.cAdded a check to prevent EOF messages from updating the consumer position.
Regression subtest:
tests/0137-barrier_batch_consume.cNew Subtest
do_test_consume_batch_eof_position()is addedTest Flow
rd_kafka_consume_batch_queue()withenable.partition.eof=truerd_kafka_position()returnslast_offset + 1(notlast_offset + 2)